home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / lord2b6.zip / HELP.REF < prev    next >
Text File  |  1997-05-19  |  11KB  |  434 lines

  1. ;help inside of help.ref (yeah, this file) is run if a user hits ? from
  2. ;the main screen in the game.  This way, if you want to add a complicated
  3. ;help system, (ie, they can get help on certain things, whatever) you can.
  4.  
  5. @#NOTIME
  6. `r0  `2Um, hello?  Anybody home?  You can't sit here all day, there are
  7.   adventures to be had!  Come back when you are ready - be not afraid, child.
  8. @#talk
  9. @do move 3 21
  10. @do write
  11. `r1`% ENTER SCREEN MESSAGE :`x
  12. @do readstring 51 NIL `s01
  13. @do stripbad `s01
  14. @do `p21 is length `s01
  15. @if `p21 more 1 then do
  16.  @begin
  17.  @do `s02 is `r1`%`x`n`%:`x
  18.  @do `s02 add `s01
  19.  @do talk `s02
  20.  @end
  21. @do statbar
  22.  
  23. @#yell
  24. @do move 3 21
  25. @do write
  26. `r1`% ENTER GLOBAL MESSAGE :`x
  27. @do readstring 51 NIL `s01
  28. @do stripbad `s01
  29. @do `p21 is length `s01
  30. @if `p21 more 1 then do
  31.  @begin
  32.  @do `s02 is `r1`%`x`n`%:`x
  33.  @do `s02 add `s01
  34.  @do talk `s02 all
  35.  @end
  36. @do statbar
  37.  
  38. @#whoison
  39. ;our whos on list
  40. @show
  41. `r0`c  `r1                        `%PEOPLE ON NOW                             `r0  
  42.  
  43.   `0Name                       Level           Location
  44.  
  45. @whoison
  46. @show
  47.  
  48. @key
  49. @drawmap
  50. @update
  51.  
  52. @#map
  53. ;if player hits M from the map menu
  54. @if `i20 > 0 then do
  55.   @begin
  56.   @do write
  57. `r0
  58.   @overheadmap
  59.   ;now we do any additions to our map,  like text or marks on the map
  60.   ;we had npc players do so they know where to go
  61.  
  62.   @do move 77 12 ;porttown
  63.   @do write
  64. `r2`%▄
  65.  
  66.   @do move 76 17 ;greentree
  67.   @do write
  68. `r2`%▄
  69.  
  70.   @do move 79 17 ;stonebrook
  71.   @do write
  72. `r2`%■
  73.  
  74.   @do move 80 10 ;stonepass lodge
  75.   @do write
  76. `r2▄
  77.  
  78.   @do move 52 14 ;flag city
  79.   @do write
  80. `r2`%▄
  81.  
  82.  
  83.   @if bitcheck `t12 3 1 then do
  84.     @begin
  85.     @do move 75 20 ;edward
  86.     @do write
  87. `r2`0°
  88.     @end
  89.  
  90.  
  91.   ;this math converts your 'block #' to x y cords to show the
  92.   ;"you are here" blip.  We use lmap instead of map, lmap is the
  93.   ;the last 'visible' map the player was on.
  94.  
  95.   @do `p20 is &lmap
  96.   @do `p20 / 80
  97.   @do `p21 is &lmap
  98.   @do `p22 is `p20
  99.   @do `p22 * 80
  100.   @do `p21 - `p22
  101.   @do `p20 + 1
  102.   @if `p21 is 0 then do
  103.    @begin
  104.    @do `p21 is 80
  105.    @do `p20 - 1
  106.    @end
  107.   @do move `p21 `p20
  108.   @do write
  109. `r2`b`r0
  110.  
  111. ;draw the help
  112. @do move 3 3
  113. @show
  114. `r1`%Reading your map.
  115. `2─────────────────────
  116.   `%▄ `0City/town with lodging
  117.   `%■ `0City/town `4without`0 lodging
  118.   `%° `0House or shack
  119.   `4 `0Your current location
  120.  
  121.   `0Note:  `2Some buildings/etc must be
  122.   discovered before they show up here.
  123.   @do move 1 22
  124.   @do write
  125. `k
  126.   @drawmap
  127.   @update
  128.   @closescript
  129.   @end
  130. @do saybar
  131. `4You don't have a map.
  132.  
  133. @#rank1
  134. ;this is the format for experience ranking
  135. @do `s01 is `n
  136. @do pad `s01 21
  137. @if sexmale is 1 then `s02 is `0M
  138. @if sexmale is 0 then `s02 is `#F
  139. @do `s03 is `p01
  140. @do frontpad `s03 14
  141. @do `s04 is `p09
  142. @do frontpad `s04 2
  143. @if dead is 1 then `s05 is `4Dead
  144. @if dead is 0 then `s05 is `%Alive
  145.  
  146. @writefile temp`*.dat
  147. `s02 `2`s01`%`s03   `s04     `s05
  148. @#listplayers
  149. @do write
  150. `r0`c  `0Ranking players...
  151.  
  152. @do delete temp`*.dat         ;`* is node number
  153. @writefile temp`*.dat
  154. `r0`c`r1                             `%  LORD II RANKINGS                            `r0
  155.                 
  156.   `0Name                     Experience  Level   Status Alignment Quests
  157. `2-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  158. @
  159.  
  160. ;rank lets us specify WHAT `p to rank, and what the name of the procedure
  161. ;that formats the rank.
  162. ;its been comented out - it works, but @lordrank is the same thing built
  163. ;into the .EXE, so it is a bit faster
  164. ;@rank crap`*.dat 1 rank1
  165. @lordrank temp`*.dat 1
  166. @displayfile temp`*.dat
  167. @key bottom
  168. @drawmap
  169. @update
  170.  
  171.  
  172.  
  173. @#help
  174. @do `v01 is 1
  175. @label helpstart
  176. @show
  177. `r0`c  `r1  `%LORD II: New World Beta 6 - V0.80  `r0
  178.  
  179. `0  This BBS is an official test site for this new door - thanks for
  180.   helping test it!
  181.  
  182.   `2Use your `0ARROW-KEYS`2 or numpad (with numlock turned on) to select an
  183.   option then press `0ENTER`2.
  184.  
  185. @do write
  186. `x`x
  187. @choice
  188. `2List hotkeys that do things on the map mode
  189. `2What symbols mean on the `0'your stats'`2 screen
  190. `2How to move
  191. `2New stuff in this beta
  192. `2About us and how to report bugs and suggestions
  193. `2Beginners help and strategy
  194. `4Quit back to the BBS
  195. `2View `0Game Settings`2
  196. `%Play the game!
  197. @if responce is 8 then do
  198.   @begin
  199.    @if `v06 is 1 then `s01 is On
  200.    @if `v06 is 0 then `s01 is Off
  201.    @do `s02 is `v05
  202.    @if `v05 < 1 then `s02 is `%unlimited
  203.    @show
  204. `r0`c  `r1  Settings for this game  `r0
  205.  
  206.   `2You get `0`s02`2 turns per day.
  207.   `2Clean mode is `0`s01`2.
  208.   `2Quest opportunities per day is `0`v07`2.
  209.   `2This game has been running for `0&time`2 days. 
  210.  
  211. `k
  212.   @do goto helpstart
  213.   @end
  214.  
  215. @if responce is 1 then do
  216.  @begin
  217.  @pauseoff
  218.  @SHOW SCROLL
  219.  
  220.  
  221.   `%Commands that work from the main map screen:
  222.  
  223.   `0? `2- `0This help screen
  224.   `0R `2- `0Redraw the screen
  225.   `0V `2- `0View your stats/inventory
  226.   `0T `2- `0Talk - Everyone in the game can hear you
  227.   `0D `2- `0Daily Happenings
  228.   `0H `2- `0Hail - Trade with/talk to/kill a person. (must be on their square)
  229.   `0L `2- `0List warriors, lets you know who's on top
  230.   `0W `2- `0Write mail to someone
  231.   `0P `2- `0People online right now
  232.   `0S `2- `0Show names of everyone on the current screen
  233.   `0B `2- `0BackBuffer, log of recent messages.
  234.   `0F `2- `0Fast BackBuffer, shows last 3 messages only, for speed.
  235.   `0Q `2- `0Quit back to the BBS
  236. @do goto helpstart
  237.  @end
  238.  
  239. @if responce is 2 then do
  240.  @begin
  241.  @pauseoff
  242.  @SHOW SCROLL
  243.  
  244.  
  245.   `%ABOUT ITEM SYMBOLS:
  246.  
  247.   `r4`*W`r0`2 `8- `2It can be used as a weapon.
  248.   `r2`*A`r0`2 `8- `2It can be used as armour.
  249.   `r5`*1`r0`2 `8- `2It can only be used once.
  250.  
  251.   `2Remember - press `0V `2to view your stats, this is also where you
  252.   equip weapons and armour.
  253. @do goto helpstart
  254.  
  255.  @end
  256.  
  257. @if responce is 3 then do
  258.  @begin
  259.  @pauseoff
  260.  @SHOW SCROLL
  261.  
  262.  
  263.   `%ABOUT MOVEMENT:
  264.  
  265.   `2Use the `0arrow-keys`2 or the `0numpad`2 to move around/select options
  266.   in most areas.  To use the numpad, make `4SURE`2 that the num lock
  267.   key is `4ON`2. `2(`0it will work either way if your terminal supports arrow
  268.   keys`2)
  269.  
  270.   If using arrow keys causes the daily log to pop up randomly, you should
  271.   switch to the numpad.
  272. @do goto helpstart
  273.  @end
  274.  
  275.  
  276. @if responce is 4 then do
  277.  @begin
  278.  @pauseoff
  279.  @SHOW SCROLL
  280.  
  281.  
  282.   `%NOTES ABOUT THIS BETA:
  283.  
  284.   `%Some stuff is missing still, but here is what CAN be done that couldn't
  285.   in the last beta. (IF this copy is running REGISTERED that is..)
  286.  
  287.   `0* `2New quest involving Ma's daughter. (greentree)
  288.   `0* `2Map is now cooler
  289.   `0* `2BoneTown is finished!  (mostly)
  290.   `0* `2The quest2000(tm) engine is in place (unlimited quests)
  291.   `0* `2More weapons and armour in most towns
  292.   `0* `2Skystaff area changed slightly
  293.   `0* `2Player rankings shows completed quests
  294.   `0* `2Lots of other new stuff too! ;>
  295.  
  296.   `2It is `bNOT`2 possible to help Turgon, find the 'evil' in the evil
  297.   forest or win the game.  Expect these in the next beta/version.
  298.  
  299. `2  Pretty much `bNOTHING `2works up past `0Stonepass Lodge`2.  Don't waste
  300.   your time up there unless you are really bored.
  301. @do goto helpstart
  302.  @end
  303.  
  304.  
  305. @if responce is 5 then do
  306.  @begin
  307.  @pauseoff
  308.  @SHOW SCROLL
  309.  
  310.  
  311.   `%ABOUT US:
  312.  
  313.   `0LORD II`2:`0 New World `2- (c) Copyright 1997: Robinson Technologies, Inc.
  314.  
  315.   `2This is beta 6. Compiled 5-18-97.
  316.  
  317.   `0WWW  `8:`2  www.rtsoft.com
  318.   `0Email`8:`2  sethable@rtsoft.com
  319. @do goto helpstart
  320.  @end
  321.  
  322. @if responce is 6 then do
  323.  @begin
  324.  @pauseoff
  325.  @SHOW SCROLL
  326.  
  327.  
  328.   `%Help and strategy for the new adventurer.
  329.  
  330.   `0LORD II`2:`0 New World `2is a very different kind of game.  There is a
  331.   huge world to explore (`0over 300 screen`2) many people and animals to meet (not
  332.   all of them nice) and other REAL players to befriend and kill `0-`2 even while
  333.   they are online playing at the same time!
  334.  
  335.  `$ You can be good or you can be evil.  You can save the world or you can
  336.   destroy it.
  337.  
  338.   `%Find some cash!
  339.  
  340.   `2Do this by 'pushing' against the table in 'your' house.  (the one you
  341.   started in)  With this money you can buy cheap things at the store.
  342.  
  343.   `%Get berries for your mom.
  344.  
  345.   `2Just west of your cottage there is a small patch that looks different
  346.   then the rest `0-`2 try pushing against it.  You'll find some berries.  If you
  347.   see a certain block of grass or stone that looks different, try pushing
  348.   against it `0-`2 you never know what you'll find. (most likely something
  349.   good)
  350.  
  351.   `%Fight monsters, heal yourself.
  352.  
  353.   `2This isn't such an unfamiliar idea!  But it is more tricky now `0-`2 First,
  354.   find an area that looks like it might contain monsters.  (usually away from
  355.   towns and villages)
  356.  
  357.   Next `0-`2 Walk around.  You will randomly encounter various beasts/people and
  358.   be able to kill and sometimes talk with them.  Some areas contain a `0HIGHER`2
  359.   chance of running into things.  
  360.  
  361.   When you are low on hitpoints, you will need to heal yourself.  Inside
  362.   Stonebrook there is such a place.  Later, when you have more gold you may
  363.   wish to purchase items that have the same effect `0-`2 different color potions
  364.   are the easiest way to heal on the road.
  365.  
  366.   `%Raising Levels
  367.  
  368.   `2No matter how long you have been playing the game, it is `0ALWAYS`2 possible
  369.   to improve your skills by gaining a level providing you have the experience.
  370.  
  371.   `2In all the land there is only ONE place you can do this `0-`2 Barak's Training
  372.   center in Greentree.  Beware of Barak though, he is kind of a jerk.
  373.  
  374.   `%What is alignment?
  375.  
  376.   `2This is what determines what kind of a person you are - noughty or
  377.   nice.  `00`2 is average, `010`2 is very nice and `4-10`2 is very
  378.   nasty.
  379.  
  380.   Someone who is nasty might see different options then someone who is nice -
  381.   depending on their level of evil they might have an option to kick a begger
  382.   in the head where a nice person would have had 'give him some gold' as an
  383.   option.  Get it?
  384.  
  385.   `%Arming weapons and armour 101.
  386.  
  387.   `2Before you can use them you need to arm them.  From the map menu, hitting
  388.   `0V`2 will bring up your `0stat screen`2.  This where you can see things
  389.   like what you are holding and how strong you are.
  390.  
  391.   You equipping and use items the same way - by highlighting them with the
  392.   light bar and pressing enter.  You will then be given a list of options
  393.   that can be done with that item.  Some items have more than one use.
  394.  
  395.   After equiping a weapon or armour, pay close attention to your overall
  396.   Attack and Defense.  The level these increment is how you know how good
  397.   a particular piece of equipment is!
  398.  
  399.   `%Getting jobs and quests.
  400.  
  401.   `2Certain people you talk to will let you 'conduct business' - this usually
  402.   means they have a job for your to do.
  403.  
  404.   If it involves going somewhere you have never heard of - do not accept it
  405.   and see if they have any others.  You only get 2 job offers per day max by
  406.   default so be smart! 
  407.  
  408.   `$Quick Tip: `2Finish the quest on the same day and you will get a bonus!
  409.  
  410. @do goto helpstart
  411.  @end
  412.  
  413. @if response is 7 then do
  414.   @begin
  415.   @show
  416. `\`\  Goodbye.
  417.   @halt 0
  418.   @end
  419.  
  420.  
  421.  ;default
  422.  @pauseon
  423.  @if `p09 > 0 then do
  424.    @begin
  425.    @drawmap
  426.    @update
  427.    @end
  428.  @closescript
  429.  
  430.  
  431.  
  432.  
  433. @#done
  434.